[IA64] tidy up vcpu_set_itc error message
authorawilliam@xenbuild2.aw <awilliam@xenbuild2.aw>
Tue, 2 Jan 2007 23:42:09 +0000 (16:42 -0700)
committerawilliam@xenbuild2.aw <awilliam@xenbuild2.aw>
Tue, 2 Jan 2007 23:42:09 +0000 (16:42 -0700)
This patch enhances the error message in question in two minor ways

* typo fix: one -> once
* Print the entire message at once, otherwise it
  seems to end up geting interlaced with other dom0 kernel
  messages on the console (on my system at least).

Signed-Off-By: Simon Horman <horms@verge.net.au>
xen/arch/ia64/xen/vcpu.c

index da609c8a8e74d9415d7046819f69bb76076ebbeb..4b57f2ddb0d9df697601ce2660d183a31f0d0d88 100644 (file)
@@ -1207,8 +1207,8 @@ IA64FAULT vcpu_set_itc(VCPU * vcpu, u64 val)
 #ifdef DISALLOW_SETTING_ITC_FOR_NOW
        static int did_print;
        if (!did_print) {
-               printk("vcpu_set_itc: Setting ar.itc is currently disabled\n");
-               printk("(this message is only displayed one)\n");
+               printk("vcpu_set_itc: Setting ar.itc is currently disabled "
+                      "(this message is only displayed once)\n");
                did_print = 1;
        }
 #else